home *** CD-ROM | disk | FTP | other *** search
/ Amiga CD-ROM Collection / Amiga CD-ROM Collection - Auge 4000 and Cactus and Demo Util.iso / auge4000 / 46 / lib / time / ctime.c < prev    next >
C/C++ Source or Header  |  1990-06-20  |  121b  |  15 lines

  1.  
  2. /*
  3.  *  time/ctime.c
  4.  */
  5.  
  6. #include <time.h>
  7.  
  8. char *
  9. ctime(tp)
  10. const time_t *tp;
  11. {
  12.     return(asctime(localtime(tp)));
  13. }
  14.  
  15.